Use separate config files for unique spacecraft IDs in CI builds #68
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CI machines need unique spacecraft IDs to prevent command conflicts with development devices in shared lab environments.
Implementation
ComCfg.CI.fppfor CI builds (spacecraft ID0x00C1) and keptComCfg.fppfor development builds (spacecraft ID0x0044)CIenvironment variableBenefits
.fppconfiguration filesHow It Works
The build system automatically detects the environment via the
CIenvironment variable:CIis set) → usesComCfg.CI.fpp(spacecraft ID0x00C1)ComCfg.fpp(spacecraft ID0x0044)No additional build flags needed - it works automatically.
Development builds:
0x0044(68)CI builds:
0x00C1(193)Valid range: 10-bit CCSDS spacecraft ID (
0x0000-0x03FF)Original prompt
<issue_description>To prevent conflicting commanding from test devices in labs. Use a unique space craft ID for CI builds
proves-core-reference/FprimeZephyrReference/project/config/ComCfg.fpp
Line 18 in 1d53de9
Comments on the Issue (you are @copilot in this section)
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.